home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n05.arc / BPB.SCR < prev    next >
Text File  |  1990-02-13  |  543b  |  26 lines

  1.  
  2. L 200 0 0 1
  3. A 100
  4. XOR AX,AX
  5. MOV AL,[210]   ;number of FATs
  6. MOV BX,[216]   ;size of FATs
  7. MUL BX
  8. MOV BX,AX      ;total size of FATs now in BX
  9. MOV AX,[20B]   ;bytes per sector
  10. MOV CL,20
  11. DIV CL
  12. MOV CL,AL      ;# of directory entries per sector now in CL
  13. MOV AX,[211]   ;number of root dir entries.
  14. DIV CL         ;total size of root directory now in AX
  15. MOV CX,AX
  16. ADD CX,BX
  17. INC CX
  18.  
  19. G120
  20.  AX= number of sectors used by Root directory
  21.  BX= number of sectors used by FATs
  22.  CX= number of sectors to copy for quick-format
  23. Q
  24.  
  25.  
  26.